home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / LIBRARY / CMPLTPAS / DIRREC.DEF < prev    next >
Text File  |  1988-07-02  |  299b  |  11 lines

  1.   DIRPtr = ^DIRRec;
  2.   DIRRec = RECORD
  3.              FileName  : String15;
  4.              Attrib    : Byte;
  5.              FileSize  : LongInt;
  6.              TimeStamp : TimeRec;
  7.              DateStamp : DateRec;
  8.              Prior     : DIRPtr;
  9.              Next      : DIRPtr;
  10.            END;
  11.